 @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;700&family=Noto+Sans+KR:wght@100;300;400;500;700&family=Cormorant+Garamond:ital,wght@1,300&display=swap');

        :root {
            --luxury-gold: #b39557;
            --text-primary: #111827;
            --text-secondary: #4b5563;
        }

        .font-serif-kr { font-family: 'Noto Serif KR', serif; }
        .font-sans-kr { font-family: 'Noto Sans KR', sans-serif; }
        .font-italic-eng { font-family: 'Cormorant Garamond', serif; font-style: italic; }

        /* 요일 스케줄 디자인 */
        .day-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #9ca3af;
        }
        .day-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #e5e7eb;
            margin: 0 auto;
            transition: all 0.3s ease;
        }
        .day-active .day-dot {
            background: var(--luxury-gold);
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(179, 149, 87, 0.5);
        }
        .day-active .day-label {
            color: var(--text-primary);
        }

        /* 키워드 태그 */
        .keyword-tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #f3f4f6;
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            color: var(--text-secondary);
            background: #ffffff;
            font-weight: 500;
            white-space: nowrap;
            transition: border-color 0.3s;
        }
        .keyword-tag:hover {
            border-color: var(--luxury-gold);
            color: var(--luxury-gold);
        }

        /* 경력 리스트 아이템 */
        .career-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 0.4rem;
            text-align: left;
        }
        
        /* 데스크탑 불렛 포인트 */
        @media (min-width: 1024px) {
            .career-item::before {
                content: '';
                flex-shrink: 0;
                width: 4px;
                height: 4px;
                background: var(--luxury-gold);
                border-radius: 50%;
                margin-top: 0.6rem;
            }
        }

        /* 모바일 센터 정렬 */
        @media (max-width: 1023px) {
            .career-item {
                justify-content: center;
                text-align: center;
                gap: 0;
            }
            .career-item::before {
                display: none;
            }
        }

        /* 합격생 태그 스타일 */
        .pass-tag {
            display: inline-block;
            background-color: #f9fafb;
            color: #374151;
            font-size: 0.85rem;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            border-left: 2px solid var(--luxury-gold);
            margin: 0.25rem 0.25rem 0.25rem 0;
            font-weight: 500;
        }
        .pass-tag.highlight {
            background-color: #fffbeb;
            color: #92400e;
            border-left: 2px solid #d97706;
        }

        /* 이미지 프레임 */
        .img-frame {
            background-color: #ffffff;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            width: 100%;
            max-width: 300px;
        }

        /* 레이아웃 그리드 */
        .instructor-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        @media (min-width: 1024px) {
            .instructor-grid {
                grid-template-columns: 28% 30% 42%; /* 비율 미세 조정 */
                gap: 0;
                align-items: start;
            }
        }